home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / screen.arc / SCREEN.DOC next >
Encoding:
Text File  |  1984-10-27  |  2.5 KB  |  63 lines

  1. PURPOSE -  This program was written to allow the user to set the
  2. color of the screen without getting into BASIC. it can be embedded in
  3. batch files such as the AUTOEXEC.BAT or simply entered from the
  4. keyboard. The format of the command is as follows:
  5.  
  6.       SCREEN  foreground background border
  7.  
  8. where foreground and border can be any color from table 1 and
  9. background can be any color from table 2. Any of the colors can
  10. be abreviated to the least number of characters that makes it unique
  11. in the table.
  12.  
  13.         TABLE 1                TABLE 2
  14.  
  15.         black                  blue
  16.         blue                   green
  17.         green                  cyan
  18.         red                    red
  19.         magenta                magenta
  20.         brown                  brown
  21.         gray                   gray
  22.         BLUE
  23.         GREEN
  24.         CYAN
  25.         RED
  26.         MAGENTA
  27.         yellow
  28.         white
  29.  
  30.         Colors listed in capital letters are the intensified
  31. color; in small letters normal intensity is used. If a border color
  32. is not specified the border color is not set. If the background
  33. color is not specified or is incorrect no background color is used.
  34. If the foreground color is not specified or is incorrect the
  35. message "color not specified is issued." The effect of not specifying
  36. or incorrectly specifying a background color is a black background.
  37. A message "screen color set" will be issued if the foreground color
  38. can be correctly determined.
  39.  
  40.         The invocation of this program will, at a minimum, cause the
  41. screen mode to be set to 80 X 25 with color. All of the calls are
  42. done using standard BIOS interrupts in an attempt to ensure
  43. compatability with future releases. The program runs successfully on
  44. DOS 1.1 and DOS 2.0. If the ANSI.SYS device driver is used on
  45. DOS 2.0 the screen is cleared but the color is not set correctly.
  46. A future version of this program will provide support for the
  47. ANSI.SYS device driver.
  48.  
  49.         This program was written by:
  50.  
  51.                 Mike Mahoney
  52.                 Waterford Software Associates
  53.                 R.D. 5 Hull Road
  54.                 Waterford, Pa.   16441
  55.  
  56.         It is being distributed for personal and non-commercial
  57. use only. This program or any part of it may not be used for any
  58. commercial purpose. This program is distributed without any
  59. warranty expressed or implied. It is the responsibility of the user
  60. to determine applicability to his/her environment. Any comments or
  61. suggestions regarding the program can be sent to the address above.
  62.  
  63.